00001 <?php 00002 /* 00003 ThWboard - PHP/MySQL Bulletin Board System 00004 ============================================== 00005 (c) 2000, 2001 by 00006 Paul Baecher <paul@thewall.de> 00007 Felix Gonschorek <funner@thewall.de> 00008 00009 download the latest version: 00010 http://www.thwboard.de 00011 00012 This program is free software; you can 00013 redistribute it and/or modify it under the 00014 terms of the GNU General Public License as 00015 published by the Free Software Foundation; 00016 either version 2 of the License, or (at 00017 your option) any later version. 00018 00019 ============================================== 00020 00021 */ 00022 /*--------------------------------------------------------------------------+ 00023 This file is part of eStudy. 00024 forum/admin/classes/class.common.inc.php 00025 - Modulgruppe: Forum 00026 - Beschreibung: URL Parser 00027 - Version: 02/26/04 00028 - Autor(en): Benjamin Stadin <stadin@gmx.de> 00029 +---------------------------------------------------------------------------+ 00030 This program is free software; you can redistribute it and/or 00031 modify it under the terms of the GNU General Public License 00032 as published by the Free Software Foundation; either version 2 00033 of the License, or any later version. 00034 +---------------------------------------------------------------------------+ 00035 This program is distributed in the hope that it will be useful, 00036 but WITHOUT ANY WARRANTY; without even the implied warranty of 00037 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00038 GNU General Public License for more details. 00039 You should have received a copy of the GNU General Public License 00040 along with this program; if not, write to the Free Software 00041 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00042 +--------------------------------------------------------------------------*/ 00050 include_once ("class.adminfunctions.inc.php"); 00051 // php 4.1+ 00052 if (isset($_GET)) extract($_GET, EXTR_SKIP); 00053 if (isset($HTTP_PUT_VARS)) extract($HTTP_PUT_VARS, EXTR_SKIP); 00054 if (isset($_POST)) extract($_POST, EXTR_SKIP); 00055 if (get_magic_quotes_gpc() && is_array($GLOBALS)) { 00056 $_GET = r_stripslashes($_GET); 00057 $_POST = r_stripslashes($_POST); 00058 $_COOKIE = r_stripslashes($_COOKIE); 00059 $GLOBALS = r_stripslashes($GLOBALS); 00060 }
1.5.8